Skip to content

Commit

Permalink
channelMessageOptionsのimport元を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
kamecha committed Nov 10, 2024
1 parent 9b85409 commit 45f7e0d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
4 changes: 2 additions & 2 deletions denops/@ddu-kinds/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ import {
Predicate,
vars,
} from "../traqvim/deps.ts";
import { channelMessageOptions, channelTimeline } from "../traqvim/model.ts";
import { channelTimeline } from "../traqvim/model.ts";
import { actionOpenChannel } from "../traqvim/action.ts";
import { Message } from "../traqvim/type.d.ts";
import { channelMessageOptions, Message } from "../traqvim/type.d.ts";

// TODO: unkownutilのアプデしたらtype.d.tsのChannelとかに変更する
// ChannelとUnreadChannelをUnion型にできなかったので、kindごと分ける
Expand Down
3 changes: 1 addition & 2 deletions denops/traqvim/action.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
import { assert, bufname, Denops, fn, helper, is, vars } from "./deps.ts";
import { ChannelBuffer, Message } from "./type.d.ts";
import { ChannelBuffer, channelMessageOptions, Message } from "./type.d.ts";
import {
activity,
addMessageStamp,
channelMessageOptions,
channelPath,
channelTimeline,
createPin,
Expand Down
3 changes: 1 addition & 2 deletions denops/traqvim/message_bench.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { traq } from "./deps.ts";
import {
channelMessageOptions,
channelTimeline,
channelUUID,
getStamp,
getUser,
homeChannelId,
} from "./model.ts";
import { Message } from "./type.d.ts";
import { channelMessageOptions, Message } from "./type.d.ts";
import { api } from "./api.ts";

api.tokenFilePath = "";
Expand Down

0 comments on commit 45f7e0d

Please sign in to comment.