UNPKG
mp70-pptx-automizer
Version:
latest (0.6.3)
0.6.3
0.6.2
A template based pptx generator
github.com/singerla/pptx-automizer
singerla/pptx-automizer
mp70-pptx-automizer
/
dist
/
interfaces
/
itemplate.d.ts
9 lines
(8 loc)
•
251 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
IArchive
, {
ArchiveInput
}
from
'./iarchive'
;
import
{
XmlDocument
}
from
'../types/xml-types'
;
export
interface
ITemplate
{
location
:
string
;
file
:
ArchiveInput
;
archive
:
IArchive
;
getSlideIdList
:
() =>
Promise
<
XmlDocument
>; }