Fixed #4389 - Rename PTOptions and DefaultPTOptions types with PassThrough and DefaultPassThrough types

This commit is contained in:
mertsincan 2023-09-05 12:28:04 +01:00
parent 57ce4e0183
commit 5c94099fa7
95 changed files with 280 additions and 280 deletions

View file

@ -9,7 +9,7 @@
import { DirectiveBinding, ObjectDirective } from 'vue';
import { DirectiveHooks } from '../basedirective';
import { PassThroughOptions } from '../passthrough';
import { PTOptions } from '../ts-helpers';
import { PassThrough } from '../ts-helpers';
export declare type RippleDirectivePassThroughOptionType = RippleDirectivePassThroughAttributes | null | undefined;
@ -21,7 +21,7 @@ export interface RippleOptions {
* Used to pass attributes to DOM elements inside the component.
* @type {RippleDirectivePassThroughOptions}
*/
pt?: PTOptions<RippleDirectivePassThroughOptions>;
pt?: PassThrough<RippleDirectivePassThroughOptions>;
/**
* Used to configure passthrough(pt) options of the component.
* @type {PassThroughOptions}