12 lines
262 B
TypeScript
12 lines
262 B
TypeScript
import { Element } from './element.js';
|
|
import { Entry } from './entry.js';
|
|
export interface Item extends Entry, Element {
|
|
content: string;
|
|
id: string;
|
|
press(): void;
|
|
focus(): void;
|
|
unfocus(): void;
|
|
disable(): void;
|
|
enable(): void;
|
|
}
|