-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add types for
CustomParseFormat
plugin, and allow creating types fo…
…r static plugins
- Loading branch information
Ben Grynhaus
committed
Feb 18, 2019
1 parent
2cde4d7
commit f79c6a9
Showing
3 changed files
with
26 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
import { ConfigType, PluginFunc, StaticPlugin } from '../../index' | ||
|
||
interface CustomParseFormatPlugin extends StaticPlugin { | ||
(input: string, format: string): this; | ||
} | ||
|
||
declare const pluginFn: PluginFunc<CustomParseFormatPlugin>; | ||
export default pluginFn |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters