Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju committed Sep 21, 2019
1 parent 1c45ed9 commit e33d050
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion core/shared_queue.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ impl SharedQueue {
#[cfg(test)]
mod tests {
use super::*;
use crate::isolate::Buf;
use crate::ops::Buf;

#[test]
fn basic() {
Expand Down
4 changes: 2 additions & 2 deletions deno_typescript/lib.deno_core.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ declare class Op {

constructor(name: string);

setOpId(opId: Opid): void;
setOpId(opId: OpId): void;

static handleAsyncMsgFromRust(opId: OpId, buf: Uint8Array): void;

Expand Down Expand Up @@ -58,7 +58,7 @@ declare interface DenoCore {
shift(): Uint8Array | null;
};

Op: Op;
Op: typeof Op;
initOps(): void;

recv(cb: MessageCallback): void;
Expand Down

0 comments on commit e33d050

Please sign in to comment.