7 lines
160 B
TypeScript
7 lines
160 B
TypeScript
import type { EncryptedWire } from './EncryptedWire';
|
|
export type AttachParams = {
|
|
password: EncryptedWire | null;
|
|
guid: string;
|
|
kiosk: boolean;
|
|
};
|