refactor(core): fix types for client code (#6064)

This commit is contained in:
Joshua Chen 2021-12-08 02:58:36 +08:00 committed by GitHub
parent f96a051fbe
commit b4ec7ec011
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 48 additions and 58 deletions

View file

@ -442,3 +442,5 @@ export interface TOCItem {
readonly children: TOCItem[];
readonly level: number;
}
export type RouteChunksTree = {[x: string | number]: string | RouteChunksTree};