import type { Intersect } from '../../../utils'; import type { Attribute } from '../..'; /** * Represents a big integer Strapi attribute along with its options */ export type BigInteger = Intersect<[ Attribute.OfType<'biginteger'>, Attribute.ConfigurableOption, Attribute.DefaultOption, Attribute.MinMaxOption, Attribute.PrivateOption, Attribute.RequiredOption, Attribute.WritableOption, Attribute.VisibleOption, Attribute.UniqueOption ]>; export type BigIntegerValue = string; export type GetBigIntegerValue = T extends BigInteger ? BigIntegerValue : never; //# sourceMappingURL=biginteger.d.ts.map