@strapi/types
Version:
Shared typescript types for Strapi internal use
8 lines • 351 B
TypeScript
/**
* Extracts keys from a registry object based on a specified index type.
*
* @template TRegistry - The registry object.
* @template TIndexType - The type of the index used to filter the keys.
*/
export type Keys<TRegistry extends object, TIndexType extends string> = Extract<keyof TRegistry, TIndexType>;
//# sourceMappingURL=registry.d.ts.map