apply code formatting

This commit is contained in:
falsandtru
2017-08-18 21:36:37 +09:00
parent 7ad5650b35
commit 46d69df986
+8 -7
View File
@@ -166,13 +166,14 @@ export interface Languages {
}
export type HookCallback = (env: Environment) => void;
export type AvailableHooks = "before-highlightall"
| "before-sanity-check"
| "before-highlight"
| "before-insert"
| "after-highlight"
| "complete"
| "wrap";
export type AvailableHooks
= "before-highlightall"
| "before-sanity-check"
| "before-highlight"
| "before-insert"
| "after-highlight"
| "complete"
| "wrap";
export interface Hooks {
all: Array<Array<(env: Environment) => void>>;