playactor
Version:
play around with your playstation devices
10 lines (9 loc) • 335 B
TypeScript
import { IncomingPacket, IResultPacket } from "../../socket/packets/base";
/**
* Sent by the server in response to a LOGIN request when the account
* is protected by a passcode
*/
export declare class RemotePlayPasscodeRequestPacket extends IncomingPacket implements IResultPacket {
readonly type: number;
result: number;
}