-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
17 additions
and
17 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
ensure, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts"; | ||
import { Response, ResponseWithBody } from "./types.ts"; | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
|
||
const UploadAttachmentParamsFields = { | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
import { isUserSummary, UserSummary } from "./user_summary.ts"; | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
const GroupSummaryFields = { | ||
id: is.Number, | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { isUserSummary, UserSummary } from "./user_summary.ts"; | ||
import { isGroupSummary } from "./group_summary.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
|
||
import { isTagSummary, TagSummary } from "./tags.ts"; | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
import { GroupSummary, isGroupSummary } from "./group_summary.ts"; | ||
|
||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
|
||
const TagFields = { | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
const UserSummaryFields = { | ||
id: is.Number, | ||
|
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import { | ||
is, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { Fetcher } from "../fetcher.ts"; | ||
import { GroupSummary, isGroupSummary } from "./group_summary.ts"; | ||
|
||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import { execute } from "https://deno.land/x/[email protected]/helper/execute.ts"; | ||
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts"; | ||
|
||
import { Handler, openBuffer } from "../router.ts"; | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts"; | |
import * as option from "https://deno.land/x/[email protected]/option/mod.ts"; | ||
import * as variable from "https://deno.land/x/[email protected]/variable/variable.ts"; | ||
import { getbufline } from "https://deno.land/x/[email protected]/function/buffer.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { getLogger } from "https://deno.land/[email protected]/log/mod.ts"; | ||
|
||
import { Filetype, prepareProxy } from "./buffer.ts"; | ||
|
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 |
---|---|---|
|
@@ -9,7 +9,7 @@ import { | |
ensure, | ||
is, | ||
maybe, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
import { isOpener, isPost } from "../types.ts"; | ||
import { Filetype, prepareViewer, setViewerContent } from "./buffer.ts"; | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
import type { Denops } from "https://deno.land/x/[email protected]/mod.ts"; | ||
import * as buffer from "https://deno.land/x/[email protected]/buffer/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import * as variable from "https://deno.land/x/[email protected]/variable/variable.ts"; | ||
|
||
import { Filetype, prepareViewer, setViewerContent } from "./buffer.ts"; | ||
|
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 |
---|---|---|
|
@@ -6,7 +6,7 @@ import { | |
import xdg from "https://deno.land/x/[email protected]/src/mod.deno.ts"; | ||
import { join } from "https://deno.land/[email protected]/path/mod.ts"; | ||
import { ensureFile } from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { ensure, is } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
import { | ||
ConsoleHandler, | ||
getLogger, | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,7 @@ import { join } from "https://deno.land/[email protected]/path/mod.ts"; | |
import { ensureFile } from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import { exists, expandGlob } from "https://deno.land/[email protected]/fs/mod.ts"; | ||
import { parse, stringify } from "https://deno.land/[email protected]/toml/mod.ts"; | ||
import { is, maybe } from "https://deno.land/x/[email protected].0/mod.ts"; | ||
import { is, maybe } from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
export type Domain = string; | ||
|
||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ import { | |
is, | ||
// ObjectOf as O, | ||
Predicate as P, | ||
} from "https://deno.land/x/[email protected].0/mod.ts"; | ||
} from "https://deno.land/x/[email protected].2/mod.ts"; | ||
|
||
export type Opener = "edit" | "new" | "vnew" | "tabnew"; | ||
export const isOpener: P<Opener> = is.OneOf([ | ||
|