UNPKG

@kibibit/kibibe

Version:

a url shortner and tracker

12 lines (11 loc) 305 B
import { Document } from 'mongoose'; export declare type UrlDocument = Url & Document; export declare class CreateUrlDto { longUrl: string; } export declare class Url { urlCode: string; longUrl: string; clickCount: number; } export declare const UrlSchema: import("mongoose").Schema<any>;