Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,17 +1,13 @@
declare const decorator: any;

export class Test1 {
/**
* This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId
*/
/** This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId */
@decorator
property: (() => any) | undefined;
}

export class Test2 {
/**
* This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId
*/
/** This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsI */
@decorator
property: ((arg: any) => any) | undefined;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,11 @@ input_file: crates/oxc_isolated_declarations/tests/fixtures/class-decorator.ts
==================== .D.TS ====================

export declare class Test1 {
/**
* This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId
*/
/** This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId */
property: (() => any) | undefined;
}
export declare class Test2 {
/**
* This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsId
*/
/** This methond will trigger the feature highlight dialog load/show based on dialogId and analyticsI */
property: ((arg: any) => any) | undefined;
}
export declare class Test3 {
Expand Down
Loading