mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
21 lines
504 B
TypeScript
21 lines
504 B
TypeScript
/// <reference types="ecmarkup" />
|
|
|
|
import * as emu from "ecmarkup";
|
|
|
|
emu.build("string", (path: string) => Promise.resolve("string"), {
|
|
contributors: "string",
|
|
copyright: true,
|
|
date: new Date(),
|
|
location: "string",
|
|
oldToc: true,
|
|
toc: true,
|
|
shortname: "string",
|
|
stage: "string",
|
|
status: "proposal",
|
|
title: "string",
|
|
version: "string",
|
|
verbose: true
|
|
}).then((spec: emu.Spec) => {
|
|
const output = spec.toHTML();
|
|
const biblio = spec.exportBiblio();
|
|
}); |