UNPKG

sf-decomposer

Version:

Break down large Salesforce metadata files into smaller, more manageable files for version control and then recreate deployment-compatible files.

6 lines (5 loc) 258 B
import { Hook } from '@oclif/core'; import { PostRetrieveHookOptions } from '../helpers/types.js'; type HookFunction = (this: Hook.Context, options: PostRetrieveHookOptions) => Promise<void>; export declare const scopedPostRetrieve: HookFunction; export {};