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