config-rocket
    Preparing search index...

    Interface RocketAssembleHooks

    interface RocketAssembleHooks {
        onFrameFile: (
            args: { filePath: string } & { skipFile: (reason?: string) => void },
        ) => void | Promise<void>;
        [key: string]: HookCallback;
    }

    Hierarchy

    • Hooks
      • RocketAssembleHooks

    Indexable

    • [key: string]: HookCallback
    Index

    Properties

    Properties

    onFrameFile: (
        args: { filePath: string } & { skipFile: (reason?: string) => void },
    ) => void | Promise<void>