Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
23 lines
741 B
Plaintext
23 lines
741 B
Plaintext
/** Supported Sentry transport protocols in a Dsn. */
|
|
export type DsnProtocol = 'http' | 'https';
|
|
/** Primitive components of a Dsn. */
|
|
export interface DsnComponents {
|
|
/** Protocol used to connect to Sentry. */
|
|
protocol: DsnProtocol;
|
|
/** Public authorization key. */
|
|
publicKey?: string;
|
|
/** Private authorization key (deprecated, optional). */
|
|
pass?: string;
|
|
/** Hostname of the Sentry instance. */
|
|
host: string;
|
|
/** Port of the Sentry instance. */
|
|
port?: string;
|
|
/** Sub path/ */
|
|
path?: string;
|
|
/** Project ID */
|
|
projectId: string;
|
|
}
|
|
/** Anything that can be parsed into a Dsn. */
|
|
export type DsnLike = string | DsnComponents;
|
|
//# sourceMappingURL=dsn.d.ts.map
|