polen
Version:
A framework for delightful GraphQL developer portals
43 lines • 916 B
TypeScript
import type { colorPropDef } from '@radix-ui/themes/props';
type RadixColor = typeof colorPropDef[`color`][`values`][number];
interface TypeKindTyokens {
symbol: string;
color: RadixColor;
}
export declare const typeKindTokensIndex: {
Object: {
symbol: string;
color: "iris";
};
Interface: {
symbol: string;
color: "pink";
};
Union: {
symbol: string;
color: "pink";
};
Enum: {
symbol: string;
color: "orange";
};
Scalar: {
symbol: string;
color: "orange";
};
InputObject: {
symbol: string;
color: "green";
};
List: {
symbol: string;
color: "gray";
};
NonNull: {
symbol: string;
color: "gray";
};
};
export declare const unknownTypeKindToken: TypeKindTyokens;
export {};
//# sourceMappingURL=type-kind-tokens.d.ts.map