rawx
Version:
process daemon with utilities
14 lines (13 loc) • 633 B
TypeScript
export interface Util_Module {
Base: Base_C;
Validator: Arg_Validator_Class;
}
import { Base_C, Base_I, Wait, Thing1_Thing2 } from "./base";
import { Arg_Validator_Class } from "./validation/validator";
export type { Base_C, Base_I, Wait, Thing1_Thing2, Arg_Validator_Class };
export declare type str = string;
export declare type Abstract_Constructor<P, Q> = abstract new (args: P) => Q;
export declare type Constructor<P, Q> = new (args: P) => Q;
export declare type Class_Proxy_F<P, Q> = (args: P) => new (args: P) => Q;
export declare const Base: Base_C;
export declare const Validator: Arg_Validator_Class;