@k8ts/instruments
Version:
A collection of utilities and core components for k8ts.
27 lines • 803 B
TypeScript
export declare class Attr {
readonly text: string;
constructor(text: string);
}
export declare class Verb {
readonly text: string;
constructor(text: string);
}
export declare class Quantity {
readonly num: number;
readonly noun: string;
constructor(num: number, noun: string);
}
export declare class RefName {
readonly name: string;
constructor(name: string);
}
export declare class Dest {
readonly text: string;
constructor(text: string);
}
export declare function verb(verb: string): Verb;
export declare function attr(attr: string): Attr;
export declare function quantity(num: number, noun: string): Quantity;
export declare function dest(text: string): Dest;
export declare function ref(name: string): RefName;
//# sourceMappingURL=pretty-objects.d.ts.map