mirror of
https://github.com/AmberGraceRblx/luau-promise.git
synced 2025-04-24 23:50:03 +00:00
48 lines
975 B
JavaScript
48 lines
975 B
JavaScript
|
module.exports = {
|
||
|
title: 'Roblox Lua Promise',
|
||
|
description: 'Promise implementation for Roblox',
|
||
|
|
||
|
base: '/roblox-lua-promise/',
|
||
|
|
||
|
plugins: [
|
||
|
['api-docs-generator', {
|
||
|
defaults: {
|
||
|
returns: ['void'],
|
||
|
property_tags: [{
|
||
|
name: 'read only',
|
||
|
unless: ['writable']
|
||
|
}]
|
||
|
},
|
||
|
types: {
|
||
|
void: {
|
||
|
summary: 'Interchangeable for nil in most cases.'
|
||
|
},
|
||
|
},
|
||
|
tagColors: {
|
||
|
'read only': '#1abc9c',
|
||
|
'writable': '#3498db',
|
||
|
'deprecated': '#e7c000',
|
||
|
'client only': '#349AD5',
|
||
|
'server only': '#01CC67',
|
||
|
'enums': '#e67e22'
|
||
|
},
|
||
|
methodCallOperator: ':',
|
||
|
staticMethodCallOperator: '.'
|
||
|
}]
|
||
|
],
|
||
|
|
||
|
themeConfig: {
|
||
|
searchOptions: {
|
||
|
placeholder: 'Press S to search...'
|
||
|
},
|
||
|
nav: [
|
||
|
{ text: 'API Reference', link: '/lib/' }
|
||
|
],
|
||
|
|
||
|
sidebarDepth: 3,
|
||
|
sidebar: [
|
||
|
'/lib/',
|
||
|
'/lib/Details'
|
||
|
]
|
||
|
}
|
||
|
}
|