added typings.d.ts

This commit is contained in:
blackfenix2 2020-09-01 22:52:19 -04:00
parent 448c7208b9
commit b450354e57
2 changed files with 4 additions and 2 deletions

View File

@ -1,5 +1,3 @@
/* eslint-disable no-param-reassign */
// @ts-ignore
import svelteDoc from 'sveltedoc-parser';
import * as path from 'path';
@ -10,6 +8,7 @@ import * as path from 'path';
*/
export default async function svelteDocgen(source: string) {
// get filename for source content
// eslint-disable-next-line no-underscore-dangle
const file = path.basename(this._module.resource);
// set SvelteDoc options

View File

@ -0,0 +1,3 @@
declare module 'sveltedoc-parser' {
export function parse(options: any): Promise<any>;
}