Sha256: 3c19e77a05c092cab5f4fd57f6864aa2657f3ad524882f917a05fdb025905199
Contents?: true
Size: 416 Bytes
Versions: 62
Compression:
Stored size: 416 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 {Stringified} from 'type-fest'; type Car { model: string; speed: number; } const carForm: Stringified<Car> = { model: 'Foo', speed: '101' }; ``` */ export type Stringified<ObjectType> = {[KeyType in keyof ObjectType]: string};
Version data entries
62 entries across 62 versions & 5 rubygems