Skip to content

Commit

Permalink
Export aux types
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianRappl committed Feb 8, 2018
1 parent 64e993d commit ddae0f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/server/injectors/script-injector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ export interface DynamicScriptInjectorConfig {
[file: string]: boolean;
}

interface ScriptResponseBuilderData {
export interface ScriptResponseBuilderData {
statusCode: number;
statusText: string;
headers: Headers;
content: string;
}

interface ScriptResponseBuilder {
export interface ScriptResponseBuilder {
(data: ScriptResponseBuilderData): KrasAnswer;
}

interface ScriptFileEntry {
export interface ScriptFileEntry {
active: boolean;
file?: string;
error?: string;
Expand Down

0 comments on commit ddae0f2

Please sign in to comment.