UNPKG
@ngneat/dirty-check-forms
Version:
latest (3.0.3)
3.0.3
3.0.2
3.0.1
3.0.0
2.0.0
1.1.0
1.0.1
1.0.0
Detect Unsaved Changes in Angular Forms
github.com/ngneat/dirty-check-forms
ngneat/dirty-check-forms
@ngneat/dirty-check-forms
/
lib
/
dirty-component.d.ts
5 lines
(4 loc)
•
134 B
TypeScript
View Raw
1
2
3
4
5
import
{
Observable
}
from
'rxjs'
;
export
interface
DirtyComponent
{
isDirty$
:
Observable
<
boolean
> |
boolean
| (
() =>
boolean
); }