@thisisagile/easy-test
Version:
Straightforward library for testing microservices built with @thisisagile/easy
45 lines (44 loc) • 1.02 kB
TypeScript
export type OneOrMore<T> = T | Array<T>;
export type ArrayLike<T> = OneOrMore<T>[];
export type Constructor<T> = {
new (...args: any[]): T;
};
export type Message<P> = Text | ((...params: P[]) => Text);
export declare const toMessage: <P>(g: Message<P>, ...params: P[]) => string;
export type Validatable = {
isValid: boolean;
};
export type Result = {
domain?: string;
location?: string;
message: string;
};
export type Results = Validatable & {
results: Result[];
};
export type Uri = Text;
export type Id = string | number;
export type JsonValue = string | number | boolean | null | Json | JsonValue[];
export type Json = {
[key: string]: JsonValue;
};
export type Exception = {
id: Id;
reason?: string;
};
export type Text = {
toString: () => string;
};
export type Query = Text;
export type UseCase = {
app: {
id: Text;
};
id: Text;
};
export type Tester = {
url: string;
};
export type CreateMutable<T> = {
-readonly [P in keyof T]: T[P];
};