mirror of
https://github.com/sindresorhus/type-fest.git
synced 2025-12-08 19:25:05 +00:00
22 lines
667 B
TypeScript
22 lines
667 B
TypeScript
import type {ReadonlyKeysOf} from './readonly-keys-of';
|
|
|
|
/**
|
|
Creates a type that represents `true` or `false` depending on whether the given type has any readonly fields.
|
|
|
|
This is useful when you want to create an API whose behavior depends on the presence or absence of readonly fields.
|
|
|
|
@example
|
|
```
|
|
import type {HasReadonlyKeys, ReadonlyKeysOf} from 'type-fest';
|
|
|
|
type UpdateService<Entity extends object> = {
|
|
removeField: HasReadonlyKeys<Entity> extends true
|
|
? (field: ReadonlyKeysOf<Entity>) => Promise<void>
|
|
: never
|
|
}
|
|
```
|
|
|
|
@category Utilities
|
|
*/
|
|
export type HasReadonlyKeys<BaseType extends object> = ReadonlyKeysOf<BaseType> extends never ? false : true;
|