UNPKG
anyid
Version:
latest (1.0.7)
1.0.7
1.0.6
1.0.5
1.0.3
1.0.2
1.0.1
1.0.0
0.0.4
0.0.2
0.0.1
0.0.0
A simple and flexible API to generate various kinds of string ID / code.
aleung/node-anyid
anyid
/
lib
/
variable.d.ts
10 lines
(9 loc)
•
211 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
AnyId
}
from
'./core'
;
declare
module
'./core'
{
interface
AnyId
{
variable
(
name
?:
string
):
AnyId
; } }
export
declare
class
Variable
{
variable
(
this
:
AnyId
,
name
?:
string
):
AnyId
; }