Sha256: 1848ebe5252ccb5ca1ca4ff52114516bdbbc7512589d6d0839beeea768bfb400
Contents?: true
Size: 441 Bytes
Versions: 28
Compression:
Stored size: 441 Bytes
Contents
/** Create a type with the keys of the given type changed to `string` type. Use-case: Changing interface values to strings in order to use them in a form model. @example ``` import type {Stringified} from 'type-fest'; type Car = { model: string; speed: number; } const carForm: Stringified<Car> = { model: 'Foo', speed: '101' }; ``` @category Object */ export type Stringified<ObjectType> = {[KeyType in keyof ObjectType]: string};
Version data entries
28 entries across 28 versions & 2 rubygems