]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/src/app/shared/forms/form-validators/video.ts
Move to angular cli
[github/Chocobozzz/PeerTube.git] / client / src / app / shared / forms / form-validators / video.ts
index 45da7df4a53cf27678dc13da4e3b01ac2c74ea82..500b5bc5f1bcfccc4c6ae67df3fb10e63cc57e76 100644 (file)
@@ -1,11 +1,5 @@
 import { Validators } from '@angular/forms'
 
-export type ValidatorMessage = {
-  [ id: string ]: {
-    [ error: string ]: string
-  }
-}
-
 export const VIDEO_NAME = {
   VALIDATORS: [ Validators.required, Validators.minLength(3), Validators.maxLength(120) ],
   MESSAGES: {