UNPKG
astro-pure
Version:
latest (1.3.6)
1.3.6
1.3.5
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
1.2.9
1.2.8
1.2.7
1.2.6
1.2.5
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
A simple, clean but powerful blog theme build by astro.
astro-pure.js.org
cworld1/astro-theme-pure
astro-pure
/
schemas
/
share.ts
10 lines
(7 loc)
•
257 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ z }
from
'astro/zod'
export
const
shareList = [
'weibo'
,
'x'
,
'bluesky'
]
as
const
export
const
ShareSchema
= (
) => z .
array
(z.
enum
(shareList)) .
default
([
'bluesky'
]) .
describe
(
'Options for sharing content on social media platforms.'
)