Skip to content

Commit

Permalink
chore: Slightly cleanup types
Browse files Browse the repository at this point in the history
  • Loading branch information
TimothyJones committed Sep 21, 2021
1 parent 1049af0 commit 72cd68e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/ffi/declarations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ import refStructDi = require('ref-struct-di');

const struct = refStructDi(ref);

const pact = ref.types.void; // unknown type
const interaction = ref.types.void; // unknown type
const unknown = ref.types.void; // unknown type

const pact = unknown;
const interaction = unknown;
const InteractionPtr = ref.refType(interaction);
const PactPtr = ref.refType(pact);
const PactHandle = struct({
Expand Down

0 comments on commit 72cd68e

Please sign in to comment.