File tree Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Expand file tree Collapse file tree 1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -1887,12 +1887,12 @@ declare module '@sveltejs/kit' {
18871887
18881888 type RemoteFormFieldContainer < Value > = RemoteFormFieldMethods < Value > & {
18891889 /** Validation issues belonging to this or any of the fields that belong to it, if any */
1890- allIssues ( ) : RemoteFormAllIssue [ ] | undefined ;
1890+ allIssues ( ) : RemoteFormIssue [ ] | undefined ;
18911891 } ;
18921892
18931893 type UnknownField < Value > = RemoteFormFieldMethods < Value > & {
18941894 /** Validation issues belonging to this or any of the fields that belong to it, if any */
1895- allIssues ( ) : RemoteFormAllIssue [ ] | undefined ;
1895+ allIssues ( ) : RemoteFormIssue [ ] | undefined ;
18961896 /**
18971897 * Returns an object that can be spread onto an input element with the correct type attribute,
18981898 * aria-invalid attribute if the field is invalid, and appropriate value/checked property getters/setters.
@@ -1939,9 +1939,6 @@ declare module '@sveltejs/kit' {
19391939
19401940 export interface RemoteFormIssue {
19411941 message : string ;
1942- }
1943-
1944- export interface RemoteFormAllIssue extends RemoteFormIssue {
19451942 path : Array < string | number > ;
19461943 }
19471944
You can’t perform that action at this time.
0 commit comments