yt-dlp support
This commit is contained in:
35
node_modules/webdriver-bidi-protocol/src/gen/ua-client-hints.ts
generated
vendored
Normal file
35
node_modules/webdriver-bidi-protocol/src/gen/ua-client-hints.ts
generated
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
export type UserAgentClientHintsCommand =
|
||||
UserAgentClientHints.SetClientHintsOverrideCommand;
|
||||
export namespace UserAgentClientHints {
|
||||
export type SetClientHintsOverrideCommand = {
|
||||
method: 'userAgentClientHints.setClientHintsOverride';
|
||||
params: {
|
||||
clientHints: UserAgentClientHints.ClientHintsMetadata | null;
|
||||
contexts?: [string, ...string[]];
|
||||
userContexts?: [string, ...string[]];
|
||||
};
|
||||
};
|
||||
}
|
||||
export namespace UserAgentClientHints {
|
||||
export type ClientHintsMetadata = {
|
||||
brands?: [...UserAgentClientHints.BrandVersion[]];
|
||||
fullVersionList?: [...UserAgentClientHints.BrandVersion[]];
|
||||
platform?: string;
|
||||
platformVersion?: string;
|
||||
architecture?: string;
|
||||
model?: string;
|
||||
mobile?: boolean;
|
||||
bitness?: string;
|
||||
wow64?: boolean;
|
||||
formFactors?: [...string[]];
|
||||
};
|
||||
}
|
||||
export namespace UserAgentClientHints {
|
||||
export type BrandVersion = {
|
||||
brand: string;
|
||||
version: string;
|
||||
};
|
||||
}
|
||||
export namespace UserAgentClientHints {
|
||||
export type SetClientHintsOverrideResult = Record<string, never>;
|
||||
}
|
||||
Reference in New Issue
Block a user