Skip to content

Commit

Permalink
Fix according to Deno 1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
fakoua committed Sep 16, 2020
1 parent e259461 commit 1609713
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion mod.ts
@@ -1,7 +1,7 @@
import * as baloon from "./src/balloon.ts";
import * as cows from "./src/cows.ts";
import { faces } from "./src/faces.ts";
import { IOptions } from "./src/models/IOptions.ts";
import type { IOptions } from "./src/models/IOptions.ts";

export const say = (options: IOptions): string => {
return doIt(options, true);
Expand Down
2 changes: 1 addition & 1 deletion src/cows.ts
@@ -1,6 +1,6 @@
import replacer from "./replacer.ts";
import * as cows from "./cows/cows.ts";
import { IOptions } from "./models/IOptions.ts";
import type { IOptions } from "./models/IOptions.ts";

export const get = (cow: string) => {
const text = (cows as Record<string, string>)[cow];
Expand Down
2 changes: 1 addition & 1 deletion src/faces.ts
@@ -1,4 +1,4 @@
import { IOptions } from "./models/IOptions.ts";
import type { IOptions } from "./models/IOptions.ts";

const modes = [
{
Expand Down

0 comments on commit 1609713

Please sign in to comment.