mirror of
https://github.com/yume-chan/ya-webadb.git
synced 2025-10-03 09:49:24 +02:00
11 lines
271 B
TypeScript
11 lines
271 B
TypeScript
export interface TangoPrfSource {
|
|
create(input: Uint8Array<ArrayBuffer>): Promise<{
|
|
output: BufferSource;
|
|
id: Uint8Array<ArrayBuffer>;
|
|
}>;
|
|
|
|
get(
|
|
id: BufferSource,
|
|
input: Uint8Array<ArrayBuffer>,
|
|
): Promise<BufferSource>;
|
|
}
|