@girs/gnome-shell
Version:
GJS TypeScript type definitions for GNOME Shell Extensions
15 lines (11 loc) • 336 B
TypeScript
import type St from '@girs/st-16';
export class CheckBox extends St.Button {
_box: St.Bin;
_label: St.Label;
constructor(label?: string);
/** @hidden */
_init(params?: Partial<St.Button.ConstructorProps>): void;
_init(label?: string): void;
setLabel(label: string): void;
getLabelActor(): St.Label;
}