1
1
/* eslint-disable no-use-before-define */
2
+ import type { Checker as _Checker } from '@endo/common/ident-checker.js' ;
2
3
import { PASS_STYLE } from './passStyle-helpers.js' ;
3
4
4
5
/**
@@ -113,6 +114,7 @@ export type PassStyleOf = {
113
114
( p : { [ key : string ] : any } ) : 'copyRecord' ;
114
115
( p : any ) : PassStyle ;
115
116
} ;
117
+
116
118
/**
117
119
* A Passable is PureData when its entire data structure is free of PassableCaps
118
120
* (remotables and promises) and error objects.
@@ -136,6 +138,7 @@ export type PassStyleOf = {
136
138
* any potential proxies.
137
139
*/
138
140
export type PureData = Passable < never , never > ;
141
+
139
142
/**
140
143
* An object marked as remotely accessible using the `Far` or `Remotable`
141
144
* functions, or a local presence representing such a remote object.
@@ -147,10 +150,12 @@ export type RemotableObject<I extends InterfaceSpec = string> = PassStyled<
147
150
'remotable' ,
148
151
I
149
152
> ;
153
+
150
154
/**
151
155
* The authority-bearing leaves of a Passable's pass-by-copy superstructure.
152
156
*/
153
157
export type PassableCap = Promise < any > | RemotableObject ;
158
+
154
159
/**
155
160
* A Passable sequence of Passable values.
156
161
*/
@@ -160,6 +165,7 @@ export type CopyArray<T extends Passable = any> = Array<T>;
160
165
* A Passable dictionary in which each key is a string and each value is Passable.
161
166
*/
162
167
export type CopyRecord < T extends Passable = any > = Record < string , T > ;
168
+
163
169
/**
164
170
* A Passable "tagged record" with semantics specific to the tag identified in
165
171
* the `[Symbol.toStringTag]` property (such as 'copySet', 'copyBag',
@@ -174,13 +180,15 @@ export type CopyTagged<
174
180
> = PassStyled < 'tagged' , Tag > & {
175
181
payload : Payload ;
176
182
} ;
183
+
177
184
/**
178
185
* This is an interface specification.
179
186
* For now, it is just a string, but we retain the option to make it `PureData`.
180
187
* Either way, it must remain pure, so that it can be safely shared by subgraphs
181
188
* that are not supposed to be able to communicate.
182
189
*/
183
190
export type InterfaceSpec = string ;
191
+
184
192
/**
185
193
* Internal to a useful pattern for writing checking logic
186
194
* (a "checkFoo" function) that can be used to implement a predicate
@@ -197,7 +205,4 @@ export type InterfaceSpec = string;
197
205
*
198
206
* See the various uses for good examples.
199
207
*/
200
- export type Checker = (
201
- cond : boolean ,
202
- details ?: import ( 'ses' ) . Details | undefined ,
203
- ) => boolean ;
208
+ export type Checker = _Checker ;
0 commit comments