10 lines
165 B
TypeScript
10 lines
165 B
TypeScript
|
|
import type { EndpointType } from "$lib/enums/endpoints";
|
||
|
|
|
||
|
|
export interface IEndpoint {
|
||
|
|
|
||
|
|
type: EndpointType
|
||
|
|
name: string
|
||
|
|
path: string
|
||
|
|
hash: string
|
||
|
|
|
||
|
|
}
|