From 0a9882feb0f3ae23e6d154dd34a9e053fde7b842 Mon Sep 17 00:00:00 2001 From: Pat Cavit Date: Thu, 7 Dec 2017 10:49:09 -0800 Subject: [PATCH] WIP: fix args to markup hook --- src/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/interfaces.ts b/src/interfaces.ts index f2923c0788..9773d330d3 100644 --- a/src/interfaces.ts +++ b/src/interfaces.ts @@ -83,7 +83,7 @@ export interface CustomElementOptions { } export interface PreprocessOptions { - markup?: (options: {content: string, options: PreprocessOptions}) => { code: string, map?: SourceMap | string }; + markup?: (options: {content: string, filename: string}) => { code: string, map?: SourceMap | string }; style?: Preprocessor; script?: Preprocessor; filename?: string