Skip to content
Prev Previous commit
Next Next commit
fix: Export missing interfaces
  • Loading branch information
Danilo Campana Fuchs committed Nov 16, 2021
commit d89396e840ceeb04a4f82d57db2a511ecd98509f
4 changes: 3 additions & 1 deletion packages/serialize/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
import type { RegisteredCache, SerializedStyles } from '@emotion/utils'
import hashString from '@emotion/hash'
import unitless from '@emotion/unitless'
import memoize from '@emotion/memoize'
import { RegisteredCache, SerializedStyles } from '@emotion/utils'
import * as CSS from 'csstype'

export type { RegisteredCache, SerializedStyles }

type Cursor = {
name: string
styles: string
Expand Down