3 lines
135 B
Plaintext
3 lines
135 B
Plaintext
export type Primitive = string | number | symbol | bigint | boolean | null | undefined;
|
|
export type Scalars = Primitive | Primitive[];
|