Skip to content

Commit

Permalink
deno fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kamecha committed Aug 7, 2024
1 parent 4499122 commit a90581b
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions denops/@ddu-kinds/channel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,16 +90,19 @@ export class Kind extends dduVim.BaseKind<Params> {
message,
args.previewContext.width,
);
assert(ret, is.ObjectOf({
body: is.ArrayOf(is.String),
position: is.OptionalOf(is.ObjectOf({
quote: is.ArrayOf(is.ObjectOf({
index: is.Number,
start: is.Number,
end: is.Number,
}))
}))
}));
assert(
ret,
is.ObjectOf({
body: is.ArrayOf(is.String),
position: is.OptionalOf(is.ObjectOf({
quote: is.ArrayOf(is.ObjectOf({
index: is.Number,
start: is.Number,
end: is.Number,
})),
})),
}),
);
return ret.body;
}),
);
Expand Down

0 comments on commit a90581b

Please sign in to comment.