mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-02 19:39:30 +08:00
14 lines
No EOL
972 B
Text
14 lines
No EOL
972 B
Text
import { TSESTree } from '@typescript-eslint/types';
|
|
import { DefinitionType } from './DefinitionType';
|
|
import { DefinitionBase } from './DefinitionBase';
|
|
declare class ParameterDefinition extends DefinitionBase<DefinitionType.Parameter, TSESTree.ArrowFunctionExpression | TSESTree.FunctionDeclaration | TSESTree.FunctionExpression | TSESTree.TSCallSignatureDeclaration | TSESTree.TSConstructorType | TSESTree.TSConstructSignatureDeclaration | TSESTree.TSDeclareFunction | TSESTree.TSEmptyBodyFunctionExpression | TSESTree.TSFunctionType | TSESTree.TSMethodSignature, null, TSESTree.BindingName> {
|
|
/**
|
|
* Whether the parameter definition is a part of a rest parameter.
|
|
*/
|
|
readonly rest: boolean;
|
|
constructor(name: TSESTree.BindingName, node: ParameterDefinition['node'], rest: boolean);
|
|
readonly isTypeDefinition = false;
|
|
readonly isVariableDefinition = true;
|
|
}
|
|
export { ParameterDefinition };
|
|
//# sourceMappingURL=ParameterDefinition.d.ts.map |