Files
tg-chat-bot/src/common/boundary-types.ts
T
2026-05-18 13:31:37 +03:00

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;