7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
7 lines
228 B
TypeScript
Executable file
7 lines
228 B
TypeScript
Executable file
import { URISchemeHandler, URIComponents } from "../uri";
|
|
export interface WSComponents extends URIComponents {
|
|
resourceName?: string;
|
|
secure?: boolean;
|
|
}
|
|
declare const handler: URISchemeHandler;
|
|
export default handler;
|