Skip to content

Commit b4ce009

Browse files
committed
remove unnecessary exports
1 parent 4515ae1 commit b4ce009

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

packages/tailwindcss/src/canonicalize-candidates.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ interface InternalCanonicalizeOptions {
7171
signatureOptions: SignatureOptions
7272
}
7373

74-
export interface DesignSystem extends BaseDesignSystem {
74+
interface DesignSystem extends BaseDesignSystem {
7575
storage: {
7676
[SIGNATURE_OPTIONS_KEY]: DefaultMap<
7777
number | null, // Rem value
@@ -1888,7 +1888,7 @@ export enum SignatureFeatures {
18881888
LogicalToPhysical = 1 << 1,
18891889
}
18901890

1891-
export interface SignatureOptions {
1891+
interface SignatureOptions {
18921892
/**
18931893
* The root font size in pixels. If provided, `rem` values will be normalized
18941894
* to `px` values.
@@ -2208,7 +2208,7 @@ function createUtilityPropertiesCache(
22082208
// essentially pre-computing the values and modifiers. This is a bit slow, but
22092209
// also only has to happen once per design system.
22102210
const PRE_COMPUTED_UTILITIES_KEY = Symbol()
2211-
export function createPreComputedUtilitiesCache(
2211+
function createPreComputedUtilitiesCache(
22122212
designSystem: DesignSystem,
22132213
): DesignSystem['storage'][typeof PRE_COMPUTED_UTILITIES_KEY] {
22142214
return new DefaultMap((options: SignatureOptions) => {
@@ -2269,7 +2269,7 @@ export function createPreComputedUtilitiesCache(
22692269
//
22702270
// These produce the same signature, therefore they represent the same variant.
22712271
export const VARIANT_SIGNATURE_KEY = Symbol()
2272-
export function createVariantSignatureCache(
2272+
function createVariantSignatureCache(
22732273
designSystem: DesignSystem,
22742274
): DesignSystem['storage'][typeof VARIANT_SIGNATURE_KEY] {
22752275
return new DefaultMap<string, string | Symbol>((variant) => {
@@ -2362,7 +2362,7 @@ export function createVariantSignatureCache(
23622362
}
23632363

23642364
export const PRE_COMPUTED_VARIANTS_KEY = Symbol()
2365-
export function createPreComputedVariantsCache(
2365+
function createPreComputedVariantsCache(
23662366
designSystem: DesignSystem,
23672367
): DesignSystem['storage'][typeof PRE_COMPUTED_VARIANTS_KEY] {
23682368
let signatures = designSystem.storage[VARIANT_SIGNATURE_KEY]

0 commit comments

Comments
 (0)