Sha256: 3f7e2c3e68f5608b4ebffc2d6b7b9f241237bf4999b46c595deb32fd961ea936

Contents?: true

Size: 542 Bytes

Versions: 33

Compression:

Stored size: 542 Bytes

Contents

import {DelimiterCasedProperties} from './delimiter-cased-properties';

/**
Convert object properties to kebab case but not recursively.

This can be useful when, for example, converting some API types from a different style.

@see KebabCase
@see KebabCasedPropertiesDeep

@example
```
interface User {
	userId: number;
	userName: string;
}

const result: KebabCasedProperties<User> = {
	'user-id': 1,
	'user-name': 'Tom',
};
```

@category Template Literals
*/
export type KebabCasedProperties<Value> = DelimiterCasedProperties<Value, '-'>;

Version data entries

33 entries across 33 versions & 1 rubygems

Version Path
immosquare-cleaner-0.1.40 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.39 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.38 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.32 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.31 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.30 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.29 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.28 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.27 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.26 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.25 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.24 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts
immosquare-cleaner-0.1.23 node_modules/crypto-random-string/node_modules/type-fest/ts41/kebab-cased-properties.d.ts