@strapi/types
Version:
Shared typescript types for Strapi internal use
19 lines • 657 B
TypeScript
import type { Intersect } from '../../../utils';
import type { Attribute } from '../..';
/**
* Represents a decimal Strapi attribute along with its options
*/
export type Decimal = Intersect<[
Attribute.OfType<'decimal'>,
Attribute.ConfigurableOption,
Attribute.DefaultOption<DecimalValue>,
Attribute.MinMaxOption,
Attribute.PrivateOption,
Attribute.RequiredOption,
Attribute.WritableOption,
Attribute.VisibleOption,
Attribute.UniqueOption
]>;
export type DecimalValue = number;
export type GetDecimalValue<T extends Attribute.Attribute> = T extends Decimal ? DecimalValue : never;
//# sourceMappingURL=decimal.d.ts.map