Skip to content

Commit cfb62c3

Browse files
committed
refactor(pass-style): minor types gardening
1 parent 01529a5 commit cfb62c3

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

packages/pass-style/src/types.d.ts

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/* eslint-disable no-use-before-define */
2+
import type { Checker as _Checker } from '@endo/common/ident-checker.js';
23
import { PASS_STYLE } from './passStyle-helpers.js';
34

45
/**
@@ -113,6 +114,7 @@ export type PassStyleOf = {
113114
(p: { [key: string]: any }): 'copyRecord';
114115
(p: any): PassStyle;
115116
};
117+
116118
/**
117119
* A Passable is PureData when its entire data structure is free of PassableCaps
118120
* (remotables and promises) and error objects.
@@ -136,6 +138,7 @@ export type PassStyleOf = {
136138
* any potential proxies.
137139
*/
138140
export type PureData = Passable<never, never>;
141+
139142
/**
140143
* An object marked as remotely accessible using the `Far` or `Remotable`
141144
* functions, or a local presence representing such a remote object.
@@ -147,10 +150,12 @@ export type RemotableObject<I extends InterfaceSpec = string> = PassStyled<
147150
'remotable',
148151
I
149152
>;
153+
150154
/**
151155
* The authority-bearing leaves of a Passable's pass-by-copy superstructure.
152156
*/
153157
export type PassableCap = Promise<any> | RemotableObject;
158+
154159
/**
155160
* A Passable sequence of Passable values.
156161
*/
@@ -160,6 +165,7 @@ export type CopyArray<T extends Passable = any> = Array<T>;
160165
* A Passable dictionary in which each key is a string and each value is Passable.
161166
*/
162167
export type CopyRecord<T extends Passable = any> = Record<string, T>;
168+
163169
/**
164170
* A Passable "tagged record" with semantics specific to the tag identified in
165171
* the `[Symbol.toStringTag]` property (such as 'copySet', 'copyBag',
@@ -174,13 +180,15 @@ export type CopyTagged<
174180
> = PassStyled<'tagged', Tag> & {
175181
payload: Payload;
176182
};
183+
177184
/**
178185
* This is an interface specification.
179186
* For now, it is just a string, but we retain the option to make it `PureData`.
180187
* Either way, it must remain pure, so that it can be safely shared by subgraphs
181188
* that are not supposed to be able to communicate.
182189
*/
183190
export type InterfaceSpec = string;
191+
184192
/**
185193
* Internal to a useful pattern for writing checking logic
186194
* (a "checkFoo" function) that can be used to implement a predicate
@@ -197,7 +205,4 @@ export type InterfaceSpec = string;
197205
*
198206
* See the various uses for good examples.
199207
*/
200-
export type Checker = (
201-
cond: boolean,
202-
details?: import('ses').Details | undefined,
203-
) => boolean;
208+
export type Checker = _Checker;

0 commit comments

Comments
 (0)