11 lines
188 B
TypeScript
11 lines
188 B
TypeScript
export interface InvokedPromiseOptions {
|
|
id?: string;
|
|
}
|
|
export interface PromiseMachineSchema {
|
|
states: {
|
|
pending: {};
|
|
resolved: {};
|
|
rejected: {};
|
|
};
|
|
}
|