8 lines
164 B
TypeScript
8 lines
164 B
TypeScript
export type KeyboardOptions = {
|
|
layout: string;
|
|
keymap: string | null;
|
|
model: string | null;
|
|
variant: string | null;
|
|
options: Array<string>;
|
|
};
|