This commit is contained in:
bipproduction
2025-11-05 11:25:46 +08:00
parent 232aff3f96
commit 98257d5f77
19 changed files with 146 additions and 115 deletions

View File

@@ -161,6 +161,11 @@ declare interface BinaryTargetsEnvValue {
native?: boolean;
}
/**
* Equivalent to `Uint8Array` before TypeScript 5.7, and `Uint8Array<ArrayBuffer>` in TypeScript 5.7 and beyond.
*/
export declare type Bytes = ReturnType<Uint8Array['slice']>;
export declare type Call<F extends Fn, P> = (F & {
params: P;
})['returns'];
@@ -3062,6 +3067,7 @@ declare type QueryPlanNode = {
args: {
from: QueryPlanNode;
to: QueryPlanNode;
fields: string[];
};
} | {
type: 'initializeRecord';