UNPKG

woodwing-assets

Version:

TypeScript client for interacting with the WoodWing Assets Server API

18 lines (17 loc) 309 B
type ExclusiveRemoveSource = { q: string; ids?: never; folderPath?: never; } | { q?: never; ids: string[]; folderPath?: never; } | { q?: never; ids?: never; folderPath: string; }; export type RemoveRequest = ExclusiveRemoveSource & { asyncFlag?: boolean; }; export {};