Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
wintercounter committed Jun 30, 2021
1 parent f084235 commit fb098f4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions packages/cryptic-css/prop-keyframes/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import { CCSSProps } from '@cryptic-css/core'

interface Keyframes {
[key: string | number]: CCSSProps
type StringOrNumber = string | number
type Keyframes = {
[key in StringOrNumber]: CCSSProps
}

declare module '@cryptic-css/core' {
Expand Down
4 changes: 2 additions & 2 deletions packages/cryptic-css/prop-scroll/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { CCSSProp } from '@cryptic-css/core'
import { CCSSProps } from '@cryptic-css/core'

declare module '@cryptic-css/core' {
interface CCSSProps {
Expand All @@ -9,7 +9,7 @@ declare module '@cryptic-css/core' {
*
* @see https://ccss.dev/docs/api-and-packages/prop-scroll
*/
scroll?: CCSSProp
scroll?: 'x' | 'y' | boolean | CCSSProps
}
}

Expand Down

0 comments on commit fb098f4

Please sign in to comment.