Member Junction
    Preparing search index...
    interface WatchCallbacks {
        onError?: (error: Error) => void;
        onFileAdd?: (
            filePath: string,
            entityDir: string,
            entityConfig: any,
        ) => void;
        onFileChange?: (
            filePath: string,
            entityDir: string,
            entityConfig: any,
        ) => void;
        onFileDelete?: (
            filePath: string,
            entityDir: string,
            entityConfig: any,
        ) => void;
        onLog?: (message: string) => void;
        onRecordCreated?: (entity: BaseEntity, entityConfig: any) => void;
        onRecordSaved?: (
            entity: BaseEntity,
            isNew: boolean,
            entityConfig: any,
        ) => void;
        onRecordUpdated?: (
            entity: BaseEntity,
            changes: any,
            entityConfig: any,
        ) => void;
        onWarn?: (message: string) => void;
    }
    Index

    Properties

    onError?: (error: Error) => void
    onFileAdd?: (filePath: string, entityDir: string, entityConfig: any) => void
    onFileChange?: (filePath: string, entityDir: string, entityConfig: any) => void
    onFileDelete?: (filePath: string, entityDir: string, entityConfig: any) => void
    onLog?: (message: string) => void
    onRecordCreated?: (entity: BaseEntity, entityConfig: any) => void
    onRecordSaved?: (entity: BaseEntity, isNew: boolean, entityConfig: any) => void
    onRecordUpdated?: (entity: BaseEntity, changes: any, entityConfig: any) => void
    onWarn?: (message: string) => void