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 {
2727}
2828
2929/** 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 ;
3238
3339/**
3440 * 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+
13export declare class CdkCopyToClipboard implements OnDestroy {
24 attempts : number ;
35 copied : EventEmitter < boolean > ;
You can’t perform that action at this time.
0 commit comments