SSL-Sniffer/src/lib/classes/endpoints.ts

10 lines
165 B
TypeScript
Raw Normal View History

import type { EndpointType } from "$lib/enums/endpoints";
export interface IEndpoint {
type: EndpointType
name: string
path: string
hash: string
}