UNPKG

@stencil/core

Version:

A Compiler for Web Components and Progressive Web Apps

16 lines (15 loc) 369 B
export interface FsWatchResults { dirsAdded: string[]; dirsDeleted: string[]; filesUpdated: string[]; filesAdded: string[]; filesDeleted: string[]; } export interface FsWatcher { addFile(path: string): Promise<boolean>; addDirectory(path: string): Promise<boolean>; close(): void; } export interface FsWatcherItem { close(): void; }