10 lines
309 B
TypeScript
10 lines
309 B
TypeScript
export type BoundaryPrimitive = string | number | boolean | bigint | null | undefined;
|
|
|
|
export type BoundaryValue = BoundaryPrimitive | object | readonly BoundaryValue[];
|
|
|
|
export interface BoundaryRecord {
|
|
readonly [key: string]: BoundaryValue;
|
|
}
|
|
|
|
export type ErrorLike = Error | string | BoundaryRecord;
|