@datatr-ux/ovhcloud-types
Version:
TypeScript types for OVHCloud projects
16 lines • 448 B
TypeScript
/** Plug & Phone function key */
export interface FunctionKey {
/** The default function used by the key */
default?: string;
/** The function active on the key */
function?: string;
/** The number of the function key */
keyNum: number;
/** The key label */
label: string;
/** The function parameter */
parameter?: string;
/** The key type */
type: string;
}
//# sourceMappingURL=FunctionKey.d.ts.map