blob: e56f46262e1917fcee22b8dbbea9c04ee2b88d8c (
plain) (
blame)
1
2
3
4
5
6
|
import { FormReactive } from '@app/shared'
export abstract class MyAccountVideoChannelEdit extends FormReactive {
abstract isCreation (): boolean
abstract getFormButtonTitle (): string
}
|