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