Skip to content

Commit 2922e74

Browse files
committed
use @type {import('tailwindcss').Config} instead
1 parent e4f5510 commit 2922e74

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

stubs/defaultConfig.stub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import('tailwindcss/types').Config} */
1+
/** @type {import('tailwindcss').Config} */
22
module.exports = {
33
content: [],
44
presets: [],

stubs/simpleConfig.stub.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** @type {import('tailwindcss/types').Config} */
1+
/** @type {import('tailwindcss').Config} */
22
module.exports = {
33
content: [],
44
theme: {

types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
declare namespace tailwindcss {}
1+
export type { Config } from './config.d'

0 commit comments

Comments
 (0)