proto.io 0.0.179 → 0.0.180

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -58,9 +58,9 @@ declare const schema: ((x: Record<string, TSchema>) => Record<string, TSchema>)
58
58
  * @param defaultValue - The default value for the string array.
59
59
  * @returns The string array schema.
60
60
  */
61
- stringArray: (defaultValue?: string) => {
61
+ stringArray: (defaultValue?: string[]) => {
62
62
  readonly type: "string[]";
63
- readonly default: string | undefined;
63
+ readonly default: string[] | undefined;
64
64
  };
65
65
  /**
66
66
  * Defines a date schema.