UNPKG

@chakra-ui/cli

Version:

Generate theme typings for autocomplete

14 lines (13 loc) 451 B
import type { Compositions } from "./schema"; export declare const findCompositionById: (compositions: Compositions, id: string) => { id: string; type: string; file: string; component: string; npmDependencies: string[]; fileDependencies: string[]; } | undefined; export declare const getFileDependencies: (compositions: Compositions, id: string) => never[] | { fileDependencies: string[]; npmDependencies: string[]; };