UNPKG
undo-redo-helper
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
0.1.1
Undo Redo That Helper.
github.com/YotamHassin/undo-redo-helper
YotamHassin/undo-redo-helper
undo-redo-helper
/
dist
/
t.d.ts
12 lines
(11 loc)
•
272 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
declare
class
tmp
{
protected
_v
:
string
;
protected
valueFunc
(
v
?:
string
):
string
;
set
value
(
v
:
string
);
get
value
():
string
; }
declare
class
tmp2
extends
tmp
{
valueFunc
(
v
?:
string
):
string
;
set
value
(
v
:
string
); }
declare
let
t
: tmp2;