Skip to content

Files

Latest commit

 

History

History
25 lines (16 loc) · 437 Bytes

LibraryEntitiesShouldNotBePublic.md

File metadata and controls

25 lines (16 loc) · 437 Bytes

Pattern: Use of public library entity

Issue: -

Description

Library typealias and classes should be internal or private.

Example of incorrect code:

// code from a library
class A

Example of correct code:

// code from a library
internal class A

Further Reading