UNPKG

@yandex/themekit

Version:

Build system of design-tokens for any platforms

18 lines (17 loc) 541 B
import { CommandFlags, Command, flags } from '../utils/command'; interface BuildFlags extends CommandFlags { config: string; watch?: boolean; } export default class Build extends Command<BuildFlags> { static description: string; static flags: { config: flags.IOptionFlag<string>; watch: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; silent: import("@oclif/parser/lib/flags").IBooleanFlag<boolean>; }; run(): Promise<void>; private startWatching; private build; } export {};