Skip to content

Feat/guard clause

Feat/guard clause #34

GitHub Actions / TypeCheck failed Jan 9, 2025 in 0s

Errors 64

Found 64 errors

Annotations

Check failure on line 1 in packages/guard-clause/src/decorators/against/empty.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotEmptyGuardExtensionFactory }             from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/empty.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotEmptyGuardExtensionFactory'. Did you mean 'NotEmptyGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotEmptyGuardExtensionFactory'. Did you mean 'NotEmptyGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotEmptyGuardExtensionFactory }             from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const EmptyDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/empty.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotEmptyGuardExtensionFactory }             from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const EmptyDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/index.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 |
  3 | import { EmptyDecoratorFactory }                     from './empty.decorator.factory.js'
  4 | import { NotBigIntDecoratorFactory }                 from './not-bigint.decorator.factory.js'

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-bigint.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotBigIntGuardExtensionFactory }            from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-bigint.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotBigIntGuardExtensionFactory'. Did you mean 'NotBigIntGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotBigIntGuardExtensionFactory'. Did you mean 'NotBigIntGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotBigIntGuardExtensionFactory }            from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotBigIntDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-bigint.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotBigIntGuardExtensionFactory }            from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotBigIntDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-enum.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotEnumGuardExtensionFactory }              from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-enum.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotEnumGuardExtensionFactory'. Did you mean 'NotEnumGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotEnumGuardExtensionFactory'. Did you mean 'NotEnumGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotEnumGuardExtensionFactory }              from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotEnumDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-enum.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotEnumGuardExtensionFactory }              from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotEnumDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-instance.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotInstanceGuardExtensionFactory }          from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-instance.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotInstanceGuardExtensionFactory'. Did you mean 'NotInstanceGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotInstanceGuardExtensionFactory'. Did you mean 'NotInstanceGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotInstanceGuardExtensionFactory }          from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotInstanceDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-instance.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotInstanceGuardExtensionFactory }          from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotInstanceDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-integer.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotIntegerGuardExtensionFactory }           from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-integer.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotIntegerGuardExtensionFactory'. Did you mean 'NotIntegerGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotIntegerGuardExtensionFactory'. Did you mean 'NotIntegerGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotIntegerGuardExtensionFactory }           from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotIntegerDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-integer.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotIntegerGuardExtensionFactory }           from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotIntegerDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-iso4217.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 |
  3 | import { NotISO4217GuardExtensionFactory }           from '../../extensions/index.js'
  4 | import { GuardFactory }                              from '../../factory/index.js'

Check failure on line 3 in packages/guard-clause/src/decorators/against/not-iso4217.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotISO4217GuardExtensionFactory'. Did you mean 'NotISO4217GuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotISO4217GuardExtensionFactory'. Did you mean 'NotISO4217GuardExtension'?
Raw output
  1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
  2 |
> 3 | import { NotISO4217GuardExtensionFactory }           from '../../extensions/index.js'
    |          ^
  4 | import { GuardFactory }                              from '../../factory/index.js'
  5 |
  6 | export const NotISO4217DecoratorFactory = (

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-iso4217.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  2 |
  3 | import { NotISO4217GuardExtensionFactory }           from '../../extensions/index.js'
> 4 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  5 |
  6 | export const NotISO4217DecoratorFactory = (
  7 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-json-schema-valid.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotJsonSchemaValidGuardExtensionFactory }   from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-json-schema-valid.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotJsonSchemaValidGuardExtensionFactory'. Did you mean 'NotJsonSchemaValidGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotJsonSchemaValidGuardExtensionFactory'. Did you mean 'NotJsonSchemaValidGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotJsonSchemaValidGuardExtensionFactory }   from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotJsonSchemaValidDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-json-schema-valid.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotJsonSchemaValidGuardExtensionFactory }   from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotJsonSchemaValidDecoratorFactory = (
  8 |     parameter: string,

Check failure on line 1 in packages/guard-clause/src/decorators/against/not-number-between.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?

'"../../factory/index.js"' has no exported member named 'AbstractGuardExtensionFactoryOptions'. Did you mean 'AbstractGuardExtensionOptions'?
Raw output
> 1 | import type { AbstractGuardExtensionFactoryOptions } from '../../factory/index.js'
    |               ^
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
  4 | import { NotNumberBetweenGuardExtensionFactory }     from '../../extensions/index.js'

Check failure on line 4 in packages/guard-clause/src/decorators/against/not-number-between.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

'"../../extensions/index.js"' has no exported member named 'NotNumberBetweenGuardExtensionFactory'. Did you mean 'NotNumberBetweenGuardExtension'?

'"../../extensions/index.js"' has no exported member named 'NotNumberBetweenGuardExtensionFactory'. Did you mean 'NotNumberBetweenGuardExtension'?
Raw output
  2 | import type { DecoratorFactoryFn }                   from './decorator.interfaces.js'
  3 |
> 4 | import { NotNumberBetweenGuardExtensionFactory }     from '../../extensions/index.js'
    |          ^
  5 | import { GuardFactory }                              from '../../factory/index.js'
  6 |
  7 | export const NotNumberBetweenDecoratorFactory = (

Check failure on line 5 in packages/guard-clause/src/decorators/against/not-number-between.decorator.factory.ts

See this annotation in the file changed.

@github-actions github-actions / TypeCheck

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.

Module '"../../factory/index.js"' has no exported member 'GuardFactory'.
Raw output
  3 |
  4 | import { NotNumberBetweenGuardExtensionFactory }     from '../../extensions/index.js'
> 5 | import { GuardFactory }                              from '../../factory/index.js'
    |          ^
  6 |
  7 | export const NotNumberBetweenDecoratorFactory = (
  8 |     parameter: string,