File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
tools/public_api_guard/cdk Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -27,8 +27,14 @@ export interface CdkCopyToClipboardConfig {
27
27
}
28
28
29
29
/** Injection token that can be used to provide the default options to `CdkCopyToClipboard`. */
30
- export const CKD_COPY_TO_CLIPBOARD_CONFIG =
31
- new InjectionToken < CdkCopyToClipboardConfig > ( 'CKD_COPY_TO_CLIPBOARD_CONFIG' ) ;
30
+ export const CDK_COPY_TO_CLIPBOARD_CONFIG =
31
+ new InjectionToken < CdkCopyToClipboardConfig > ( 'CDK_COPY_TO_CLIPBOARD_CONFIG' ) ;
32
+
33
+ /**
34
+ * @deprecated Use `CDK_COPY_TO_CLIPBOARD_CONFIG` instead.
35
+ * @breaking -change 13.0.0
36
+ */
37
+ export const CKD_COPY_TO_CLIPBOARD_CONFIG = CDK_COPY_TO_CLIPBOARD_CONFIG ;
32
38
33
39
/**
34
40
* Provides behavior for a button that when clicked copies content into user's
Original file line number Diff line number Diff line change
1
+ export declare const CDK_COPY_TO_CLIPBOARD_CONFIG : InjectionToken < CdkCopyToClipboardConfig > ;
2
+
1
3
export declare class CdkCopyToClipboard implements OnDestroy {
2
4
attempts : number ;
3
5
copied : EventEmitter < boolean > ;
You can’t perform that action at this time.
0 commit comments