All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
5 lines
314 B
TypeScript
5 lines
314 B
TypeScript
import { DragSource, DropTarget, Identifier } from './interfaces';
|
|
export declare function validateSourceContract(source: DragSource): void;
|
|
export declare function validateTargetContract(target: DropTarget): void;
|
|
export declare function validateType(type: Identifier | Identifier[], allowArray?: boolean): void;
|