From 9ee5e77d3b9e30d151e5d4516eabdf81a08dda8a Mon Sep 17 00:00:00 2001 From: Junxiao Shi Date: Fri, 22 Mar 2019 11:57:02 -0400 Subject: [PATCH] ndn-js: mark 'rarely used' --- types/ndn-js/face.d.ts | 2 +- types/ndn-js/key-chain.d.ts | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/types/ndn-js/face.d.ts b/types/ndn-js/face.d.ts index 524623a1a4..18edf5ba34 100644 --- a/types/ndn-js/face.d.ts +++ b/types/ndn-js/face.d.ts @@ -48,7 +48,7 @@ export class Face { unsetInterestFilter(id: number): void; } -export type ForwardingFlags = any; +export type ForwardingFlags = any; // no declaration because this type is rarely used export class InterestFilter { constructor(filter: InterestFilter); diff --git a/types/ndn-js/key-chain.d.ts b/types/ndn-js/key-chain.d.ts index 6c1103eed5..1df70849c8 100644 --- a/types/ndn-js/key-chain.d.ts +++ b/types/ndn-js/key-chain.d.ts @@ -33,6 +33,7 @@ export class KeyChain { signWithSha256(interest: Interest): void; } +// no declaration because these types are rarely used export type CertificateV2 = any; export type KeyParams = any; export type Pib = any;