UNPKG

@yandex/themekit

Version:

Build system of design-tokens for any platforms

8 lines (7 loc) 250 B
declare type Paths = string | ReadonlyArray<string>; declare type OnChange = () => void; /** * Watches for selected paths and call `onChange` after files changed. */ export declare function watch(paths: Paths, onChange: OnChange): void; export {};