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

Version Path
clapton-0.0.26 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.25 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.24 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.23 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.22 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.21 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.20 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.19 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.18 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.17 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.16 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.15 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.14 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.13 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.12 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.11 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.10 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.9 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.8 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts
clapton-0.0.7 lib/clapton/javascripts/node_modules/type-fest/source/stringified.d.ts