Skip to content

Commit e673d5c

Browse files
committed
regenerate
1 parent 4808de4 commit e673d5c

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

packages/kit/types/index.d.ts

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)