UNPKG
feedbaby-client
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.0
Client for the FeedBaby App
github.com/SketchingDev/feedbaby-client
SketchingDev/feedbaby-client
feedbaby-client
/
lib
/
storage
/
csvs
/
TeethCsv.d.ts
8 lines
(7 loc)
•
234 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
import
{
CsvFile
}
from
"../CsvFile"
;
import
{
Teeth
}
from
"../../models/Teeth"
;
export
declare
class
TeethCsv
extends
CsvFile
<
Teeth
> {
private
static
readonly
HEADERS
;
static
create
():
TeethCsv
;
getFilename
():
string
; }