bungie-net-core
Version:
An easy way to interact with the Bungie.net API
15 lines (14 loc) • 490 B
TypeScript
/** @see {@link https://bungie-net.github.io/#/components/schemas/Applications.OAuthApplicationType} */
export declare const OAuthApplicationType: {
readonly None: 0;
/**
* Indicates the application is server based and can keep its secrets from end
* users and other potential snoops.
*/
readonly Confidential: 1;
/**
* Indicates the application runs in a public place, and it can't be trusted to
* keep a secret.
*/
readonly Public: 2;
};