IStack

types.IStack

Implemented by

length

Readonly length: number

Defined in

src/types/history.d.ts#25

clear

clear(): void

Returns

void

Defined in

src/types/history.d.ts#26


push

push(command): void

Parameters

Name Type
command ICommand

Returns

void

Defined in

src/types/history.d.ts#27


replace

replace(command): void

Parameters

Name Type
command ICommand

Returns

void

Defined in

src/types/history.d.ts#28


current

current(): CanUndef<ICommand>

Returns

CanUndef<ICommand>

Defined in

src/types/history.d.ts#29


undo

undo(): boolean

Returns

boolean

Defined in

src/types/history.d.ts#30


redo

redo(): boolean

Returns

boolean

Defined in

src/types/history.d.ts#31


canUndo

canUndo(): boolean

Returns

boolean

Defined in

src/types/history.d.ts#32


canRedo

canRedo(): boolean

Returns

boolean

Defined in

jodit/src/types/history.d.ts:33