lml-main
Version:
This is now a mono repository published into many standalone packages.
8 lines (7 loc) • 355 B
TypeScript
import { AllocationDataAction } from './allocation';
import { AutoAllocationAction } from './auto-allocation';
import { AllocationTagAction } from './tags';
export * from './allocation';
export * from './auto-allocation';
export * from './tags';
export declare type AllocationApiAction = AllocationDataAction | AutoAllocationAction | AllocationTagAction;