mirror of
https://github.com/arthur-pbty/portfolio2023.git
synced 2026-06-04 15:56:24 +02:00
9 lines
326 B
TypeScript
9 lines
326 B
TypeScript
import { Exception } from '@poppinss/utils';
|
|
/**
|
|
* Raised when trying to inject a primitive value like "StringConstructor"
|
|
* to a class constructor or method
|
|
*/
|
|
export declare class InvalidInjectionException extends Exception {
|
|
static invoke(value: any, parentName: string, index: number): InvalidInjectionException;
|
|
}
|