funky-framadate-front/src/app/ui/directives/resettable-input.directive.ts

12 lines
227 B
TypeScript

import { Directive } from '@angular/core';
/**
* add a button on an input which deletes its value
*/
@Directive({
selector: '[framadateResettableInput]',
})
export class ResettableInputDirective {
constructor() {}
}