import type { ILocaleRecord } from '../bean/resource/locale/type.ts'; export interface ICustomKeyRecord { 'x-vona-locale': keyof ILocaleRecord | undefined; 'x-vona-instance-name': string | undefined; 'x-vona-passport-code': string | undefined; 'x-vona-oauth-code': string | undefined; 'x-vona-openapi-schema': 'true' | 'false' | undefined; 'x-vona-jwt-authtoken': 'true' | 'false' | undefined; } export function $customKey(key: K): K { return key; }