@trustme24/flext 1.6.0 → 1.7.1

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/errors.d.ts CHANGED
@@ -8,6 +8,12 @@ export declare class BaseError extends BaseThrowable {
8
8
  export declare class BaseWarning extends BaseThrowable {
9
9
  name: string;
10
10
  }
11
- export declare class PotentialLoopError extends BaseThrowable {
11
+ export declare class PotentialLoopError extends BaseError {
12
+ name: string;
13
+ }
14
+ export declare class TemplateError extends BaseError {
15
+ name: string;
16
+ }
17
+ export declare class TemplateSyntaxError extends TemplateError {
12
18
  name: string;
13
19
  }