UNPKG
@nicecode/funny
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
funny,一些有趣的代码,funny code
nicecoders.github.io
nicecoders/nicecode
@nicecode/funny
/
es
/
typing
/
index.d.ts
13 lines
(12 loc)
•
249 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
{
FC
}
from
'react'
;
import
{
TypedOptions
}
from
'typed.js'
;
import
'./index.less'
;
interface
TypingProps
{
/** * */
title
:
string
;
config
?:
TypedOptions
; }
declare
const
Typing
:
FC
<
TypingProps
>;
export
default
Typing
;