Skip to content

Commit

Permalink
chore: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
antfu committed Apr 25, 2024
1 parent 269b1ac commit 1c98f6c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ export interface ViteSSGContext<HasRouter extends boolean = true> {
initialState: Record<string, any>
head: VueHeadClient<MergeHead> | undefined
isClient: boolean
onSSRAppRendered(cb: () => void): void
triggerOnSSRAppRendered(route: string, appHTML: string, appCtx: ViteSSGContext): Promise<unknown[]>
transformState?(state: any): any
onSSRAppRendered: (cb: () => void) => void
triggerOnSSRAppRendered: (route: string, appHTML: string, appCtx: ViteSSGContext) => Promise<unknown[]>
transformState?: (state: any) => any
/**
* Current router path on SSG, `undefined` on client side.
*/
Expand Down

0 comments on commit 1c98f6c

Please sign in to comment.