mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
842e4ec023
## Documentation / Examples - [X] Make sure the linting passes by running `yarn lint`
11 lines
289 B
Plaintext
11 lines
289 B
Plaintext
module default {
|
|
|
|
type Post {
|
|
required property title -> str;
|
|
required property content -> str { default := '' };
|
|
required property authorName -> str { default := 'Unknown author' };
|
|
property published -> datetime;
|
|
property publishedISO := <str>.published;
|
|
}
|
|
|
|
} |