Skip to content
Snippets Groups Projects
serializedurl.ts 327 B
Newer Older
  • Learn to ignore specific revisions
  • import {GLOBAL_PARAMS, SerializableItem} from "./serializableitem";
    
    const URL_PARAMS = ["link", ...GLOBAL_PARAMS];
    
    export class SerializedURL extends SerializableItem {
        public link: string;    // The full url
    
        // TODO: URL validator
    
        serialize(): any {
            return this.serializeProperties(URL_PARAMS);
        }
    }