UNPKG

@yume-chan/scrcpy

Version:
10 lines (7 loc) 289 B
import Struct from "@yume-chan/struct"; export const ScrcpyInjectTextControlMessage = new Struct() .uint8("type") .uint32("length") .string("text", { lengthField: "length" }); export type ScrcpyInjectTextControlMessage = (typeof ScrcpyInjectTextControlMessage)["TInit"];